home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop from Home / Iceland.iso / pc / noqtinternetaccess.dir / 00384_Script_signup back button2 < prev    next >
Text File  |  2003-03-05  |  2KB  |  61 lines

  1. on mouseup
  2.   global signBack
  3.   put signBack
  4.   if signBack = "start" then
  5.     go to "start"
  6.   else
  7.     if signBack = "products" then
  8.       go to "products"
  9.     else
  10.       if signBack = "broadband" then
  11.         go to "broadband"
  12.       else
  13.         if signBack = "unmetered" then
  14.           go to "unmetered"
  15.         else
  16.           if signBack = "payasyougo" then
  17.             go to "payasyougo"
  18.           else
  19.             if signBack = "valueadd" then
  20.               go to "valueadd"
  21.             else
  22.               if signBack = "yourportal" then
  23.                 go to "yourportal"
  24.               else
  25.                 if signBack = "youriceland" then
  26.                   go to "youriceland"
  27.                 else
  28.                   if signBack = "myreferrals" then
  29.                     go to "myreferrals"
  30.                   else
  31.                     if signBack = "compsupport" then
  32.                       go to "compsupport"
  33.                     else
  34.                       if signBack = "completesupport" then
  35.                         go to "completesupport"
  36.                       else
  37.                         if signBack = "joincommunity" then
  38.                           go to "joincommunity"
  39.                         else
  40.                           if signBack = "somuchmore" then
  41.                             go to "somuchmore"
  42.                           else
  43.                             if signBack = "customersupport" then
  44.                               go to "customersupport"
  45.                             else
  46.                               nothing
  47.                             end if
  48.                           end if
  49.                         end if
  50.                       end if
  51.                     end if
  52.                   end if
  53.                 end if
  54.               end if
  55.             end if
  56.           end if
  57.         end if
  58.       end if
  59.     end if
  60.   end if
  61. end